The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "file::slurp"

File::Slurp - Simple and Efficient Reading/Writing/Modifying of Complete Files River stage four • 626 direct dependents • 1102 total dependents

This module provides subs that allow you to read or write entire files with one simple call. They are designed to be simple to use, have flexible ways to pass in or get the file contents and to be very efficient. There is also a sub to read in all th...

CAPOEIRAB/File-Slurp-9999.32 - 01 Jul 2020 00:34:08 UTC - Search in distribution

File::Glob::Slurp - Turns <> into a slurp operator River stage zero No dependents

HACK #90 of PERL HACK proved that "<*glob*>" operator is a pretty good place to implement micro-DSL. This module turns ancient "*glob*" operator into modern "slurp" operator! As shown in "SYNOPSIS", The overridden "<>" slurps not only local files but...

DANKOGAI/File-Glob-Slurp-0.02 - 10 Jun 2009 05:54:00 UTC - Search in distribution

File::Slurp::Tiny - A simple, sane and efficient file slurper [DISCOURAGED] River stage three • 15 direct dependents • 237 total dependents

This module provides functions for fast and correct slurping and spewing. All functions are optionally exported....

LEONT/File-Slurp-Tiny-0.004 - 15 Jul 2015 14:53:01 UTC - Search in distribution

File::Slurp::Tree - slurp and emit file trees as nested hashes River stage one • 2 direct dependents • 2 total dependents

File::Slurp::Tree provides functions for slurping and emitting trees of files and directories. # an example of use in a test suite use Test::More tests => 1; use File::Slurp::Tree; is_deeply( slurp_tree( "t/some_path" ), { foo => {}, bar => "sample\n...

RCLAMP/File-Slurp-Tree-1.24 - 14 Jul 2006 15:18:52 UTC - Search in distribution

File::Slurp::Remote - read/write files on remote systems using ssh. River stage one • 4 direct dependents • 4 total dependents

This is similar to File::Slurp, but it reads and writes files on remote systems using "ssh" to get there. It uses ssh/scp to get to the remote systems. You can override the copy command by redefining $File::Slurp::Remote::scp. You can override the re...

MUIR/File-Slurp-Remote-0.44 - 03 Mar 2012 07:09:11 UTC - Search in distribution

File::Slurp::WithinPolicy - Applies filesystem policies to File::Slurp River stage two • 2 direct dependents • 22 total dependents

This provides the File::Slurp interface within a policy defined by File::Policy. By default, File::Policy is a no-op and this behaves identically to File::Slurp. System administrators may want to override the default File::Policy implementation to en...

BBC/File-Policy-1.005 - 15 Jun 2005 13:23:24 UTC - Search in distribution

File::OldSlurp - single call read & write file routines; read directories River stage zero No dependents

These are quickie routines that are meant to save a couple of lines of code over and over again. They do not do anything fancy. read_file() does what you would expect. If you are using its output in array context, then it returns an array of lines. I...

MUIR/File-OldSlurp-2004.0430 - 01 May 2004 02:24:00 UTC - Search in distribution

Slurp - Slurp entire files into variables River stage two • 8 direct dependents • 21 total dependents

This simple module serves one purpose - to provide a simple means to read (or slurp) an entire file into memory for processing. This module allows the replacement of the prototypical foreach- or while- loops used for opening and reading of files with...

ROBAU/Slurp-0.4 - 12 Jan 2003 11:54:50 UTC - Search in distribution

File::Takeput - Slurp style file IO with locking. River stage zero No dependents

Slurp style file IO with locking. The purpose of Takeput is to make it pleasant for you to script file IO. Slurp style is both user friendly and very effective if you can have your files in memory. The other major point of Takeput is locking. Takeput...

SPRAGL/File-Takeput-0.3 - 31 Oct 2023 17:33:20 UTC - Search in distribution

Perl6::Slurp - Implements the Perl 6 'slurp' built-in River stage two • 47 direct dependents • 62 total dependents

"slurp" takes: * a filename, * a filehandle, * a typeglob reference, * an IO::File object, or * a scalar reference, converts it to an input stream (using "open()" if necessary), and reads in the entire stream. If "slurp" fails to set up or read the s...

DCONWAY/Perl6-Slurp-0.051005 - 22 Feb 2014 08:39:37 UTC - Search in distribution

File::Slurper - A simple, sane and efficient module to slurp a file River stage four • 269 direct dependents • 1395 total dependents

This module provides functions for fast and correct slurping and spewing. All functions are optionally exported. All functions throw exceptions on errors, write functions don't return any meaningful value....

LEONT/File-Slurper-0.014 - 16 Dec 2022 15:09:28 UTC - Search in distribution

File::SmartNL - slurp text files no matter the New Line (NL) sequence River stage zero No dependents

Different operating systems have different sequences for new-lines. Historically when computers where first being born, one of the mainstays was the teletype. The teletype understood ASCII. The teletype was an automated typewriter that would perform ...

SOFTDIA/File-SmartNL-0.05 - 13 May 2004 12:41:29 UTC - Search in distribution

JE - Pure-Perl ECMAScript (JavaScript) Engine River stage two • 6 direct dependents • 10 total dependents

JE, short for JavaScript::Engine (imaginative, isn't it?), is a pure-Perl JavaScript engine. Here are some of its strengths: - Easy to install (no C compiler necessary*) - The parser can be extended/customised to support extra (or fewer) language fea...

SPROUT/JE-0.066 - 27 Oct 2014 00:19:07 UTC - Search in distribution

mrsh - Mr. Shell runs a command on multiple hosts River stage zero No dependents

The -H has some special magic concerning "[groups]". If a group is specified before any other options or options arguments arguments (but possibly after other groups), it will automatically be expanded to have an imaginary -H before it. Example: # li...

JETTERO/App-MrShell-2.0207 - 08 Jan 2010 16:10:54 UTC - Search in distribution

brn - bulk rename - a fork of rename. River stage zero No dependents

"brn" renames the filenames supplied according to the rule(s) given by the --expr (-e) option(s). If no such option is present then the first argument is taken to be the rule. The *perlexpr* argument is a Perl expression which is expected to modify t...

SWESTRUP/App-FileTools-BulkRename-0.07 - 18 Jul 2012 03:54:35 UTC - Search in distribution

perlop - Perl operators and precedence River stage five • 11292 direct dependents • 32664 total dependents

In Perl, the operator determines what operation is performed, independent of the type of the operands. For example "$x + $y" is always a numeric addition, and if $x or $y do not contain numbers, an attempt is made to convert them to numbers first. Th...

RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC - Search in distribution

PPR - Pattern-based Perl Recognizer River stage two • 10 direct dependents • 33 total dependents

The PPR module provides a single regular expression that defines a set of independent subpatterns suitable for matching entire Perl documents, as well as a wide range of individual syntactic components of Perl (i.e. statements, expressions, control b...

DCONWAY/PPR-0.001008 - 11 Apr 2023 05:50:32 UTC - Search in distribution
  • PPR::X - Pattern-based Perl Recognizer

ojo - Fun one-liners with Mojo River stage four • 943 direct dependents • 1041 total dependents

A collection of automatically exported functions for fun Perl one-liners. Ten redirects will be followed by default, you can change this behavior with the "MOJO_MAX_REDIRECTS" environment variable. $ MOJO_MAX_REDIRECTS=0 perl -Mojo -E 'say g("example...

SRI/Mojolicious-9.36 - 08 Mar 2024 22:16:38 UTC - Search in distribution

raps2 - "Right, Another Password Store" take two River stage zero No dependents

raps2 is a simple password safe. You give it a name, a password and optional metadata, and it will encrypt and store them for you. You probably want to start with "raps2 add accountname", and then later use "raps2 get accountname" and paste the corre...

DERF/App-Raps2-0.54 - 04 Oct 2015 16:13:42 UTC - Search in distribution

anarch - A script for creating offline copies of websites River stage zero No dependents

anarch is a script for creating offline copies of websites. It downloads a website, correcting links in pages and style sheets so that they are all relative (and all links outside the root directory are absolute), and removing '<base href>' tags. It ...

SPROUT/anarch-0.04 - 08 Nov 2009 21:49:37 UTC - Search in distribution
435 results (0.138 seconds)